home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / vbcc / machines / amigappc / libsrc / stdio / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  144 b   |  10 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. void perror(const char *s)
  7. {
  8.     fprintf(stderr,"%s: %s\n",s,_errors[errno]);
  9. }
  10.